
Monday, August 4, 2008
Wednesday, July 30, 2008
VILLEVOS

this is me! as you can see im just a typical boy nd quite a looker. i am not a pretty dude but my mom thinks im handssome. i was borne nah! born it is, on the 8th september 2008 nd ke bloma khubestates! i like chess only for sports wise nd im too romantic but dont try me! my life is fine as far as im concerned! i believe in christ so dont take me for less, i have once in my life been in a life altering relationship have you? my freindz will always remain my freinds wow its so good to be true you know! +266 63197247 or +26658084062 call me: again levosons@yahoo.com
and livosville@gmail.com


and livosville@gmail.com


RAPMAN~ARMANI


Morapeli Seele from Marabeng 955 Maseru! attended high school @ Lesotho High School where he joined armaniville! brown in complexion. he is tall but not that tall! he was well known as MASTER SEELE, and later became ZEELE and after the introduction of Armaniville he became KING ZEELE and later Rapman~Armani! and he was promoted Chief Information Officer and Director of Armanifellas LTD. Chicks call him RAP~man!
RAP~MAN is now in the National University of Lesotho doing his first year of Bachelor of Science and Technology (BSc Computer Science). In the campus, he is well known of the way he do things,he is unique and brilliant.He is the first born in the farmily of 2 girls(Libuseng(Grade11 at Sasolberg)and Karabo(Preschool at Sasolberg))and his younger brother (Motlokoa(Grade6 at Sasolberg)).Coming to liquor, Chivas Regal,and little of savanna is his style.He is not into booze but he can party.Good times and Kaycees are his favourite rendezvous.He is also well known as smart dude,maybe is because of his scottish outfits(Pringle and lyle&scott),hey do not leave guci',versarci,carduci and georgio armani behind;hm! even to day he is wearing georgio armani's buckle.But I think its wise to forward that question to NUL girls. for contact email him @ tsotetsi rapman@in.com.
RAP~MAN is now in the National University of Lesotho doing his first year of Bachelor of Science and Technology (BSc Computer Science). In the campus, he is well known of the way he do things,he is unique and brilliant.He is the first born in the farmily of 2 girls(Libuseng(Grade11 at Sasolberg)and Karabo(Preschool at Sasolberg))and his younger brother (Motlokoa(Grade6 at Sasolberg)).Coming to liquor, Chivas Regal,and little of savanna is his style.He is not into booze but he can party.Good times and Kaycees are his favourite rendezvous.He is also well known as smart dude,maybe is because of his scottish outfits(Pringle and lyle&scott),hey do not leave guci',versarci,carduci and georgio armani behind;hm! even to day he is wearing georgio armani's buckle.But I think its wise to forward that question to NUL girls. for contact email him @ tsotetsi rapman@in.com.
Friday, July 18, 2008
Tuesday, July 15, 2008
PRI~tea


Kano Makhakhe from Katlehong 1116 Maseru! born on the 02nd November 1990 in Maseru ls. attended high school @ Lesotho High School where he joined armani ville! lighter in complexion. he is tall but not that tall! he was well known as CANNON, and after the introduction of Armaniville he became PRI~TEA and later PRI~tea Armani! Chicks call him PRETTY!
PRI~tea is now in the National University of Lesotho doing his first year of Bachelor of Agriculture (BSc Agric). PRI is the one helping mok in creating this website. In the campus, he is well known of his smooth face and what I dont know is, "why they were calling him Cottie and saying his momma is responsible for his bathing, DAMN!" maybe if you check PESP 2008 you can get more details about this cotton thing!
PRI~tea is brother of ***** (?) and Thuto (?)!
PRI~tea is now in the National University of Lesotho doing his first year of Bachelor of Agriculture (BSc Agric). PRI is the one helping mok in creating this website. In the campus, he is well known of his smooth face and what I dont know is, "why they were calling him Cottie and saying his momma is responsible for his bathing, DAMN!" maybe if you check PESP 2008 you can get more details about this cotton thing!
PRI~tea is brother of ***** (?) and Thuto (?)!
Monday, July 14, 2008
KEN MOK


Tumelo Mokitimi from Riverside Abia 910 Maseru! born in Maf~town ls and left for Msu at the age of five. attended high school @ Lesotho High School where he joined armani ville! lighter in complexion. he is tall but not that tall! he was well known as T~MOK~NP, and later became MOK and after the introduction of Armaniville he became King MOK and later ken mok Armani! Chicks call him kiddy!
ken mok is now in the National University of Lesotho doing his first year of Bachelor of Science and Technology (BSc). MOK is the one who created this website with the help of Rapman~Armani(CIO & Director) and PRItea~Armani. In the campus, he is well known of his movement and what I dont know is, "what is wrong with his movement!" maybe if you check PESP 2008 you can get details on his movement!
ken mok is brother of Mokinson (13) and Liteboho (1)!
Subscribe to:
Posts (Atom)
/*
PHP Guestbook 1.1
Written by Tony Awtrey
Anthony Awtrey Consulting
See http://www.awtrey.com/support/dbeweb/ for more information
1.1 - Oct. 20, 1999 - changed the SQL statement that reads data
back out of the database to reverse the order putting the
newest entries at the top and limiting the total displayed
by default to 20. Added the ability to get the complete list
by appending the URL with '?complete=1'. Added the code and
additional query to count and list the total number of entries
and included a link to the complete list.
1.0 - Initial release
This is the SQL statement to create the database required for
this application.
CREATE TABLE guests (
guest_id
int(4)
unsigned
zerofill
DEFAULT '0000'
NOT NULL
auto_increment,
guest_name varchar(50),
guest_email varchar(50),
guest_time timestamp(14),
guest_message text,
PRIMARY KEY (guest_id)
);
*/
////////////////////////////////
// This checks to see if we need to add another guestbook entry.
////////////////////////////////
if (($REQUEST_METHOD=='POST')) {
////////////////////////////////
// This loop removed "dangerous" characters from the posted data
// and puts backslashes in front of characters that might cause
// problems in the database.
////////////////////////////////
for(reset($HTTP_POST_VARS);
$key=key($HTTP_POST_VARS);
next($HTTP_POST_VARS)) {
$this = addslashes($HTTP_POST_VARS[$key]);
$this = strtr($this, ">", " ");
$this = strtr($this, "<", " ");
$this = strtr($this, "|", " ");
$$key = $this;
}
////////////////////////////////
// This will catch if someone is trying to submit a blank
// or incomplete form.
////////////////////////////////
if ($name && $email && $message ) {
////////////////////////////////
// This is the meat of the query that updates the guests table
////////////////////////////////
$query = "INSERT INTO guests ";
$query .= "(guest_id, guest_name, ";
$query .= "guest_email, guest_time, guest_message) ";
$query .= "values(0000,'$name','$email',NULL,'$message')";
mysql_pconnect("host","user","password")
or die("Unable to connect to SQL server");
mysql_select_db("dbasename") or die("Unable to select database");
mysql_query($query) or die("Insert Failed!");
} else {
////////////////////////////////
// If they didn't include all the required fields set a variable
// and keep going.
////////////////////////////////
$notall = 1;
}
}
?>
Add a Message
//////////////////////////////// // This is where we connect to the database for reading. //////////////////////////////// mysql_pconnect("host","user","password") or die("Unable to connect to SQL server"); mysql_select_db("dbasename") or die("Unable to select database"); //////////////////////////////// // This is where we count the number of entries. //////////////////////////////// $query = "SELECT COUNT(*) FROM guests"; $numguests = mysql_query($query) or die("Select Failed!"); $numguest = mysql_fetch_array($numguests); ?>
} ?>
Add A Message
if ($notall == 1) { ?>Please answer all fields
} ?>//////////////////////////////// // This is where we connect to the database for reading. //////////////////////////////// mysql_pconnect("host","user","password") or die("Unable to connect to SQL server"); mysql_select_db("dbasename") or die("Unable to select database"); //////////////////////////////// // This is where we count the number of entries. //////////////////////////////// $query = "SELECT COUNT(*) FROM guests"; $numguests = mysql_query($query) or die("Select Failed!"); $numguest = mysql_fetch_array($numguests); ?>
echo $numguest[0]; ?> people have left me a message.
//////////////////////////////// // This is where we decide to get all the entries or just the last 20. // This variable is set by just adding a '?complete=1' after the URL. //////////////////////////////// if ($complete == 1) { $query = "SELECT * FROM guests ORDER BY guest_time DESC"; } else { $query = "SELECT * FROM guests ORDER BY guest_time DESC LIMIT 20"; } $guests = mysql_query($query) or die("Select Failed!"); //////////////////////////////// // This will loop as long as there are records waiting to be processed. // Notice the plain HTML inside the while loop structure. PHP is flexable // enough to allow you to break into and out of the "code" at any point. //////////////////////////////// while ($guest = mysql_fetch_array($guests)) { ?>Name: echo $guest['guest_name']; ?> | Email: echo $guest['guest_email']; ?> | //////////////////////////////// // The database has a timestamp record type that we can use to show the // date the guestbook was filled out. //////////////////////////////// $datefromdb = $guest['guest_time']; $year = substr($datefromdb,0,4); $mon = substr($datefromdb,4,2); $day = substr($datefromdb,6,2); $hour = substr($datefromdb,8,2); $min = substr($datefromdb,10,2); $sec = substr($datefromdb,12,2); $orgdate = date("l F dS, Y h:i A",mktime($hour,$min,$sec,$mon,$day,$year)); ?> Date: echo $orgdate; ?> |
echo $guest['guest_message']; ?> |
} ?>